dynamic translation - définition. Qu'est-ce que dynamic translation
Diclib.com
Dictionnaire en ligne

Qu'est-ce (qui) est dynamic translation - définition

TECHNIQUE OF TRANSLATING THE MACHINE CODE OF ONE CPU OR PLATFORM INTO THE NATIVE MACHINE CODE OF ANOTHER FOR EMULATION
Dynamic translation; Dynarec; Dynamic recompiler

dynamic translation         
<architecture> A virtual machine implementation approach, used to speed up execution of byte-code programs. To execute a program unit such as a method or a function, the virtual machine compiles its bytecodes into (hardware) machine code. The translated code is also placed in a cache, so that next time that unit's machine code can be executed immediately, without repeating the translation. This technique was pioneered by the commercial Smalltalk implementation currently known as VisualWorks, in the early 1980s. Currently it is also used by some implementations of the Java Virtual Machine under the name JIT (Just In Time compilation). [Peter L. Deutsch and Alan Schiffman. "Efficient Implementation of the Smalltalk-80 System", 11th Annual Symposium on Principles of Programming Languages, Jan 1984, pp. 297-302]. (2002-04-15)
Aerospool WT9 Dynamic         
  • Aerospool WT9 Dynamic with fixed landing gear
  • Aerospool WT9 Dynamic with retractable gear
  • Aerospool WT9 Dynamic in flight
LIGHT SPORT AIRCRAFT BY AEROSPOOL IN SLOVAKIA
Aerospool WT 9 Dynamic; Aerospool WT-9 Dynamic; Aerospool Dynamic
The Aerospool WT9 Dynamic is a Slovak ultralight and light-sport aircraft, designed and produced by Aerospool of Prievidza. The aircraft is supplied as a complete ready-to-fly-aircraft.
Translation studies         
SCIENCE OF INTERPRETING AND TRANSLATING
Traductology; Translation Studies; Translation theory; Translation theorist; Translation historian; Translation scholar; Translation Theory; Translatology; Post-translation studies; Post-Translation Studies; Translation history
Translation studies is an academic interdiscipline dealing with the systematic study of the theory, description and application of translation, interpreting, and localization. As an interdiscipline, translation studies borrows much from the various fields of study that support translation.

Wikipédia

Dynamic recompilation

In computer science, dynamic recompilation is a feature of some emulators and virtual machines, where the system may recompile some part of a program during execution. By compiling during execution, the system can tailor the generated code to reflect the program's run-time environment, and potentially produce more efficient code by exploiting information that is not available to a traditional static compiler.